home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 282_01 / quip.h < prev    next >
Text File  |  1989-01-11  |  1KB  |  39 lines

  1. /*
  2. HEADER:        ;
  3. TITLE:         QUIP;
  4. VERSION:       2.0;
  5. DESCRIPTION:   "Part of a fortune cookie system
  6.              
  7.                This header file defines the files for use by the quip 
  8.                rograms";
  9. KEYWORDS:      quip, fortune, utility, startup;
  10. SYSTEM:        MS-DOS, UNIX;
  11. FILENAME:      quip.h;
  12. WARNINGS:      "";
  13. SEE-ALSO:      QUIP.C, QUIP.H, QUPUPDT.C QUIPADD.C, QUIP.DAT, QUIP.KEY;
  14. AUTHORS:       ??;
  15. MODIFIED BY:   David Bryant;
  16. COMPILERS:     Microsoft Quick C;
  17. */
  18.  
  19. #ifdef UNIX
  20.  
  21. /** UNIX version **/
  22. /* Use a public directory accesable to all */
  23. char  seekname[50] = ":udd:chas.sys:quip:quip.key",
  24.       quipname[50] = ":udd:chas.sys:quip:quip.dat";
  25.  
  26. #else
  27.  
  28. /** MS-DOS version **/
  29. /* Use either the current directory or a general data directory */
  30. char  seekname[65] = "quip.key",
  31.       quipname[65] = "quip.dat";
  32.  
  33. #endif
  34.  
  35. #define  SEPERATOR '~'                    /* Char that marks end of a quip */
  36. #define  MAX_SIZE  2048                   /* Max characters in a quip */
  37.  
  38.  
  39.